home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00085_TargetListMgmt.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  5.1 KB  |  212 lines

  1. --
  2. -- TargetListMgmt
  3. --
  4.  
  5. property ancestor
  6.  
  7. property targetList  -- a specially formatted list of target sprites
  8.  
  9. property targetSpriteColor   -- the scoreColor of target sprites (to receive draggables)
  10. property targetDataMember
  11.  
  12.  
  13. on new me  
  14.   -- constants:
  15.   set targetDataMember = "TargetPredefines"
  16.   set targetSpriteColor = 3  -- corresponds to blue in the score.
  17.   
  18.   set ancestor = new (script "DragMemberMgmt")
  19.   
  20.   gatherTargetSpriteInfo (me)
  21.   return me
  22. end
  23.  
  24.  
  25. on destruct me
  26.   if objectP (ancestor) then destruct (ancestor)
  27.   set ancestor = 0
  28. end
  29.  
  30.  
  31. on gathertargetSpriteInfo me
  32.   -- get presaved target data if we are in protected mode:
  33.   if the movieName contains ".dxr" or the movieName contains ".exe" then 
  34.     set targetList = value (field targetDataMember)
  35.     return
  36.   end if
  37.   
  38.   set initList = [:]
  39.   set num = 0
  40.   
  41.   --cycle through all sprites:
  42.   repeat with spr = 1 to numSprites (me)
  43.     
  44.     -- target sprites must be certain colors to be used in the DragDrop Game:
  45.     if the scoreColor of sprite spr = targetSpriteColor then
  46.       set num = num + 1
  47.       -- gather usable information:
  48.       -- as there will be no randomization with the targets (order may be important)
  49.       -- we can initialize the information here:
  50.       set tmpLst = [#loc:(the loc of sprite spr), #identifier:value ("#" & the name of member the memberNum of sprite spr of castLib the castLibNum of sprite spr), #myNum:the memberNum of sprite spr, #myLib:the castLibNum of sprite spr,  #showFlag:0]
  51.       
  52.       -- add to the initList
  53.       addProp (initList, spr, tmpLst)
  54.     else
  55.       
  56.     end if
  57.   end repeat
  58.   
  59.   if not count (initList) then alert "There are no target sprites for this activity.  Check sprite score colors."
  60.   else 
  61.     set targetList = initList
  62.     makeField (me, targetDataMember, targetList)
  63.   end if
  64. end
  65.  
  66.  
  67. -- return TRUE if the sprite is a target:
  68.  
  69. on istarget me, spr
  70.   if voidP (getAProp (targetList, spr)) then return 0
  71.   else return 1
  72. end
  73.  
  74.  
  75.  
  76. -- return a prop list of all target names and sprites
  77. -- as follows: [#identifier:[spr,spr,spr],#identifier:[spr,spr]]
  78.  
  79. on gettargetSpritePool me
  80.   set lst = [:]
  81.   -- get all #identifiers used by given target sprites:
  82.   set num = count (targetList)
  83.   
  84.   repeat with i = 1 to num
  85.     set spr = getPropAt (targetList, i)
  86.     set rec = getAProp (targetList,spr)
  87.     set id = getAProp (rec, #identifier)
  88.     
  89.     -- add a sprite to the list of that target identifier's sprites
  90.     if not voidP (id) then
  91.       set tmp = getAProp (lst, id)
  92.       if not listP (tmp) then set tmp = []
  93.       add (tmp, spr)
  94.       setAProp (lst, id, tmp)
  95.     end if
  96.   end repeat
  97.   return lst
  98. end
  99.  
  100.  
  101. -- return a straight list of target sprites:
  102.  
  103. on gettargetSprites me
  104.   set lst = []
  105.   set c = count (targetList)
  106.   repeat with i = 1 to c
  107.     add (lst, getPropAt (targetList, i))
  108.   end repeat
  109.   return lst
  110. end 
  111.  
  112.  
  113.  
  114. -- set up a temporary data structure that lists all of the members divided into lists.. Return this form:
  115. -- [#identifier:[memberName:memberNum, memberName:memberNum], ... ]
  116.  
  117. on setUptargetPool me
  118.   set pool = [:]
  119.   
  120.   -- there is only one list of draggable members at this point
  121.   -- in the form: [castLibNum:[memberName:memberNum, ... ]]
  122.   set memberList = the memberList of ancestor
  123.   set cst = getPropAt (memberList, 1)
  124.   set memLst = getaProp (memberList, cst)
  125.   
  126.   if voidP (memLst) then 
  127.     alert "The memberList is not formatted properly."
  128.     return 0
  129.   end if
  130.   
  131.   set num = count (targetList)
  132.   repeat with i = 1 to num
  133.     set spr = getPropAt (targetList, i)
  134.     set lst = getAProp (targetList, spr)
  135.     set name = getaProp (lst, #identifier)
  136.     
  137.     if not voidP (name) then
  138.       set tmp = [:]
  139.       addProp (tmp, name, 0)
  140.       addProp (pool, name, returnPropMatchList (me, memLst, tmp))
  141.     end if
  142.   end repeat
  143.   
  144.   if the optionDown then put "targetPool:" && pool
  145.   return pool
  146. end
  147.  
  148.  
  149. on hideTargets me
  150.   set num = count (targetList)
  151.   repeat with i = 1 to num
  152.     set spr = getPropAt (targetList, i)
  153.     hideTarget (me, spr)
  154.   end repeat
  155. end
  156.  
  157.  
  158. on showTargets me
  159.   set num = count (targetList)
  160.   repeat with i = 1 to num
  161.     set spr = getPropAt (targetList, i)
  162.     showTarget (me, spr)
  163.   end repeat  
  164. end
  165.  
  166.  
  167. -- mark the target as having been dragged to.
  168. -- return true if the target has been successfully marked.
  169. -- show the target hot spot.
  170.  
  171. on showTarget me, spr
  172.   set lst = getAProp (targetList, spr)
  173.   if voidP (lst) then return 0
  174.   
  175.   setAProp (lst, #showFlag, 1)  
  176.   setAProp (targetList, spr, lst)
  177.   return 1
  178. end 
  179.  
  180.  
  181. -- mark the target as having been dragged to.
  182. -- return true if the target has been successfully marked.
  183. -- hide the target hot spot.
  184.  
  185. on hideTarget me, spr
  186.   set lst = getAProp (targetList, spr)
  187.   if voidP (lst) then return 0
  188.   
  189.   setAProp (lst, #showFlag, 0) 
  190.   setAProp (targetList, spr, lst)
  191.   return 1
  192. end 
  193.  
  194.  
  195. -- check if we are done by seeing any of the targets still have hotspots.
  196. -- if they are all disabled, then we are finished.
  197.  
  198. on checkDoneTargets me
  199.   set num = count (targetList)
  200.   
  201.   repeat with i = 1 to num
  202.     set spr = getPropAt (targetList, i)
  203.     set lst = getProp (targetList, spr)
  204.     
  205.     if getAProp (lst, #showFlag) then return 0
  206.   end repeat
  207.   
  208.   return 1
  209. end
  210.  
  211.  
  212.